home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / madwifi / net80211 / ieee80211_radiotap.h < prev    next >
C/C++ Source or Header  |  2006-05-11  |  9KB  |  221 lines

  1. /*-
  2.  * Copyright (c) 2003, 2004 David Young.  All rights reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  * 1. Redistributions of source code must retain the above copyright
  8.  *    notice, this list of conditions and the following disclaimer.
  9.  * 2. Redistributions in binary form must reproduce the above copyright
  10.  *    notice, this list of conditions and the following disclaimer in the
  11.  *    documentation and/or other materials provided with the distribution.
  12.  * 3. The name of David Young may not be used to endorse or promote
  13.  *    products derived from this software without specific prior
  14.  *    written permission.
  15.  *
  16.  * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
  17.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  18.  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  19.  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DAVID
  20.  * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  21.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  22.  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  25.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  27.  * OF SUCH DAMAGE.
  28.  *
  29.  * $Id: ieee80211_radiotap.h 1484 2006-03-23 23:02:54Z jbicket $
  30.  */
  31. #ifndef _NET_IF_IEEE80211RADIOTAP_H_
  32. #define _NET_IF_IEEE80211RADIOTAP_H_
  33.  
  34. /* A generic radio capture format is desirable. There is one for
  35.  * Linux, but it is neither rigidly defined (there were not even
  36.  * units given for some fields) nor easily extensible.
  37.  *
  38.  * I suggest the following extensible radio capture format. It is
  39.  * based on a bitmap indicating which fields are present.
  40.  *
  41.  * I am trying to describe precisely what the application programmer
  42.  * should expect in the following, and for that reason I tell the
  43.  * units and origin of each measurement (where it applies), or else I
  44.  * use sufficiently weaselly language ("is a monotonically nondecreasing
  45.  * function of...") that I cannot set false expectations for lawyerly
  46.  * readers.
  47.  */
  48. #if defined(__KERNEL__) || defined(_KERNEL)
  49. #ifndef DLT_IEEE802_11_RADIO
  50. #define    DLT_IEEE802_11_RADIO    127    /* 802.11 plus WLAN header */
  51. #endif
  52. #endif /* defined(__KERNEL__) || defined(_KERNEL) */
  53.  
  54. /* The radio capture header precedes the 802.11 header. */
  55. struct ieee80211_radiotap_header {
  56.     u_int8_t it_version;        /* Version 0. Only increases
  57.                      * for drastic changes,
  58.                      * introduction of compatible
  59.                      * new fields does not count.
  60.                      */
  61.     u_int8_t it_pad;
  62.     u_int16_t it_len;        /* length of the whole
  63.                      * header in bytes, including
  64.                      * it_version, it_pad,
  65.                      * it_len, and data fields.
  66.                      */
  67.     u_int32_t it_present;        /* A bitmap telling which
  68.                      * fields are present. Set bit 31
  69.                      * (0x80000000) to extend the
  70.                      * bitmap by another 32 bits.
  71.                      * Additional extensions are made
  72.                      * by setting bit 31.
  73.                      */
  74. } __attribute__((__packed__));
  75.  
  76. /* Name                                 Data type       Units
  77.  * ----                                 ---------       -----
  78.  *
  79.  * IEEE80211_RADIOTAP_TSFT              u_int64_t       microseconds
  80.  *
  81.  *      Value in microseconds of the MAC's 64-bit 802.11 Time
  82.  *      Synchronization Function timer when the first bit of the
  83.  *      MPDU arrived at the MAC. For received frames, only.
  84.  *
  85.  * IEEE80211_RADIOTAP_CHANNEL           2 x u_int16_t   MHz, bitmap
  86.  *
  87.  *      Tx/Rx frequency in MHz, followed by flags (see below).
  88.  *
  89.  * IEEE80211_RADIOTAP_FHSS              u_int16_t       see below
  90.  *
  91.  *      For frequency-hopping radios, the hop set (first byte)
  92.  *      and pattern (second byte).
  93.  *
  94.  * IEEE80211_RADIOTAP_RATE              u_int8_t        500kb/s
  95.  *
  96.  *      Tx/Rx data rate
  97.  *
  98.  * IEEE80211_RADIOTAP_DBM_ANTSIGNAL     int8_t          decibels from
  99.  *                                                      one milliwatt (dBm)
  100.  *
  101.  *      RF signal power at the antenna, decibel difference from
  102.  *      one milliwatt.
  103.  *
  104.  * IEEE80211_RADIOTAP_DBM_ANTNOISE      int8_t          decibels from
  105.  *                                                      one milliwatt (dBm)
  106.  *
  107.  *      RF noise power at the antenna, decibel difference from one
  108.  *      milliwatt.
  109.  *
  110.  * IEEE80211_RADIOTAP_DB_ANTSIGNAL      u_int8_t        decibel (dB)
  111.  *
  112.  *      RF signal power at the antenna, decibel difference from an
  113.  *      arbitrary, fixed reference.
  114.  *
  115.  * IEEE80211_RADIOTAP_DB_ANTNOISE       u_int8_t        decibel (dB)
  116.  *
  117.  *      RF noise power at the antenna, decibel difference from an
  118.  *      arbitrary, fixed reference point.
  119.  *
  120.  * IEEE80211_RADIOTAP_BARKER_CODE_LOCK  u_int16_t       unitless
  121.  *
  122.  *      Quality of Barker code lock. Unitless. Monotonically
  123.  *      nondecreasing with "better" lock strength. Called "Signal
  124.  *      Quality" in datasheets.  (Is there a standard way to measure
  125.  *      this?)
  126.  *
  127.  * IEEE80211_RADIOTAP_TX_ATTENUATION    u_int16_t       unitless
  128.  *
  129.  *      Transmit power expressed as unitless distance from max
  130.  *      power set at factory calibration.  0 is max power.
  131.  *      Monotonically nondecreasing with lower power levels.
  132.  *
  133.  * IEEE80211_RADIOTAP_DB_TX_ATTENUATION u_int16_t       decibels (dB)
  134.  *
  135.  *      Transmit power expressed as decibel distance from max power
  136.  *      set at factory calibration.  0 is max power.  Monotonically
  137.  *      nondecreasing with lower power levels.
  138.  *
  139.  * IEEE80211_RADIOTAP_DBM_TX_POWER      int8_t          decibels from
  140.  *                                                      one milliwatt (dBm)
  141.  *
  142.  *      Transmit power expressed as dBm (decibels from a 1 milliwatt
  143.  *      reference). This is the absolute power level measured at
  144.  *      the antenna port.
  145.  *
  146.  * IEEE80211_RADIOTAP_FLAGS             u_int8_t        bitmap
  147.  *
  148.  *      Properties of transmitted and received frames. See flags
  149.  *      defined below.
  150.  *
  151.  * IEEE80211_RADIOTAP_ANTENNA           u_int8_t        antenna index
  152.  *
  153.  *      Unitless indication of the Rx/Tx antenna for this packet.
  154.  *      The first antenna is antenna 0.
  155.  *
  156.  * IEEE80211_RADIOTAP_FCS               u_int32_t       data
  157.  *
  158.  *    FCS from frame in network byte order.
  159.  */
  160. enum ieee80211_radiotap_type {
  161.     IEEE80211_RADIOTAP_TSFT = 0,
  162.     IEEE80211_RADIOTAP_FLAGS = 1,
  163.     IEEE80211_RADIOTAP_RATE = 2,
  164.     IEEE80211_RADIOTAP_CHANNEL = 3,
  165.     IEEE80211_RADIOTAP_FHSS = 4,
  166.     IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
  167.     IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
  168.     IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
  169.     IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
  170.     IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
  171.     IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
  172.     IEEE80211_RADIOTAP_ANTENNA = 11,
  173.     IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
  174.     IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
  175.     IEEE80211_RADIOTAP_FCS = 14,
  176.     IEEE80211_RADIOTAP_EXT = 31,
  177. };
  178.  
  179. #ifndef _KERNEL
  180. /* Channel flags. */
  181. #define IEEE80211_CHAN_TURBO    0x0010  /* Turbo channel */
  182. #define IEEE80211_CHAN_CCK      0x0020  /* CCK channel */
  183. #define IEEE80211_CHAN_OFDM     0x0040  /* OFDM channel */
  184. #define    IEEE80211_CHAN_2GHZ    0x0080    /* 2 GHz spectrum channel. */
  185. #define IEEE80211_CHAN_5GHZ     0x0100  /* 5 GHz spectrum channel */
  186. #define IEEE80211_CHAN_PASSIVE  0x0200  /* Only passive scan allowed */
  187. #define    IEEE80211_CHAN_DYN    0x0400    /* Dynamic CCK-OFDM channel */
  188. #define    IEEE80211_CHAN_GFSK    0x0800    /* GFSK channel (FHSS PHY) */
  189. #define    IEEE80211_CHAN_STURBO    0x2000    /* 11a static turbo channel only */
  190.  
  191. /* Useful combinations of channel characteristics, borrowed from Ethereal */
  192. #define IEEE80211_CHAN_A \
  193.     (IEEE80211_CHAN_5GHZ | IEEE80211_CHAN_OFDM)
  194. #define IEEE80211_CHAN_B \
  195.     (IEEE80211_CHAN_2GHZ | IEEE80211_CHAN_CCK)
  196. #define IEEE80211_CHAN_G \
  197.     (IEEE80211_CHAN_2GHZ | IEEE80211_CHAN_DYN)
  198. #define IEEE80211_CHAN_TA \
  199.     (IEEE80211_CHAN_5GHZ | IEEE80211_CHAN_OFDM | IEEE80211_CHAN_TURBO)
  200. #define IEEE80211_CHAN_TG \
  201.     (IEEE80211_CHAN_2GHZ | IEEE80211_CHAN_DYN  | IEEE80211_CHAN_TURBO)
  202.  
  203. #endif /* !_KERNEL */
  204.  
  205. /* For IEEE80211_RADIOTAP_FLAGS */
  206. #define    IEEE80211_RADIOTAP_F_CFP    0x01    /* sent/received
  207.                          * during CFP
  208.                          */
  209. #define    IEEE80211_RADIOTAP_F_SHORTPRE    0x02    /* sent/received
  210.                          * with short
  211.                          * preamble
  212.                          */
  213. #define    IEEE80211_RADIOTAP_F_WEP    0x04    /* sent/received
  214.                          * with WEP encryption
  215.                          */
  216. #define    IEEE80211_RADIOTAP_F_FRAG    0x08    /* sent/received
  217.                          * with fragmentation
  218.                          */
  219.  
  220. #endif /* _NET_IF_IEEE80211RADIOTAP_H_ */
  221.